home *** CD-ROM | disk | FTP | other *** search
/ HPAVC / HPAVC CD-ROM.iso / pc / WANDR401.ZIP / sources / MAKEFILE < prev    next >
Encoding:
Text File  |  1997-10-26  |  472 b   |  22 lines

  1. # Makefile for wanderer - modified by Bill Randle 6/30/88
  2. # modified again by play@cwi.nl
  3. # and again by me.. maujp@uk.ac.warwick.cu
  4. # and yet again by adb@bucsf.bu.edu
  5. # and again by seymour@dgbt.doc.ca 17/8/97
  6.  
  7. OBJ = monsters.o m.o save.o display.o game.o read.o fall.o solu-io.o help.o
  8.  
  9. CFLAGS =  -s
  10. #CFLAGS = -g
  11. LIBS = -lalleg
  12. CC = gcc
  13.  
  14. all:    wandallg
  15.     @echo DONE
  16.  
  17. wandallg:    $(OBJ)
  18.     $(CC) $(CFLAGS) -o wandallg $(OBJ) $(LIBS)
  19.  
  20. $(OBJ): wand_head.h
  21.  
  22.